* {
    cursor: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  
  .cursor-letter {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  .cursor-letter svg path,
  .cursor-letter svg rect,
  .cursor-letter svg polygon,
  .cursor-letter svg polyline,
  .cursor-letter svg line {
    fill: rgb(0, 0, 0);
    stroke: rgb(255, 255, 255);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    backdrop-filter: blur(20px); 
  }

@media (max-width: 768px) {
  .cursor-letter {
    display: none;
  }
    .head-er h2 {
        font-size: 36px;
      }

      .head-er p {
        font-size: 15px;
      }
      .f0-otr {
    padding: 27px;
}
.logo-oo img {
        width: 110px;
        /* height: 55px; */
    }
}


:root {
  --bg: #000000;
  --clr-1: #00c2ff;
  --clr-2: #33ff8c;
  --clr-3: #ffc640;
  --clr-4: #e54cff;

  --blur: 1rem;
  --fs: clamp(3rem, 8vw, 7rem);
  --ls: clamp(-1.75px, -0.25vw, -3.5px);
}

body {
  min-height: 100vh;
  display: grid;
  color: #fff;
  font-family: "Inter", "DM Sans", Arial, sans-serif;
  background: #000000;
}

*,
*::before,
*::after {
  font-family: inherit;
  box-sizing: border-box;
}

.content-2 {
  margin-top: 270px;
  margin-bottom: 250px;
  margin-left: 40px;
  text-align: center;
}

.title {
  font-family: "Audiowide", sans-serif;
  font-size: 105px;
  font-weight: 800;
  letter-spacing: var(--ls);
  position: relative;
  overflow: hidden;
  background: var(--bg);
  margin: 0;
}

.subtitle {
    font-size: large;
}

.aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mix-blend-mode: darken;
  pointer-events: none;
}

.aurora__item {
  overflow: hidden;
  position: absolute;
  width: 60vw;
  height: 60vw;
  background-color: var(--clr-1);
  border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  filter: blur(var(--blur));
  mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
  top: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-1 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
  background-color: var(--clr-3);
  right: 0;
  top: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-2 12s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
  background-color: var(--clr-2);
  left: 0;
  bottom: 0;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-3 8s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
  background-color: var(--clr-4);
  right: 0;
  bottom: -50%;
  animation: aurora-border 6s ease-in-out infinite,
    aurora-4 24s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0% {
    top: 0;
    right: 0;
  }

  50% {
    top: 100%;
    right: 75%;
  }

  75% {
    top: 100%;
    right: 25%;
  }

  100% {
    top: 0;
    right: 0;
  }
}

@keyframes aurora-2 {
  0% {
    top: -50%;
    left: 0%;
  }

  60% {
    top: 100%;
    left: 75%;
  }

  85% {
    top: 100%;
    left: 25%;
  }

  100% {
    top: -50%;
    left: 0%;
  }
}

@keyframes aurora-3 {
  0% {
    bottom: 0;
    left: 0;
  }

  40% {
    bottom: 100%;
    left: 75%;
  }

  65% {
    bottom: 40%;
    left: 50%;
  }

  100% {
    bottom: 0;
    left: 0;
  }
}

@keyframes aurora-4 {
  0% {
    bottom: -50%;
    right: 0;
  }

  50% {
    bottom: 0%;
    right: 40%;
  }

  90% {
    bottom: 50%;
    right: 25%;
  }

  100% {
    bottom: -50%;
    right: 0;
  }
}

@keyframes aurora-border {
  0% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }

  25% {
    border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
  }

  50% {
    border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
  }

  75% {
    border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
  }

  100% {
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
  }
}
.full-c {
  color: rgb(226 226 226 / 39%);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  font-family: "Founders Grotesk Medium";
  font-size: 32px;
  position: relative;
  display: inline-block;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: currentColor;
  transition: all 0.3s ease;
}

.full-c:hover {
  background: linear-gradient(to right, yellow, white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.full-c::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px; 
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, yellow, white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.full-c:hover::after {
  opacity: 1;
}
@media (max-width: 768px) {
  #openModal {
    display: none;
  }
}


.main {
  max-width: 75rem;
  padding: 3em 1.5em;
  /* margin-bottom: 150px; */
}

.main__heading {
  font-weight: 600;
  font-size: 2.25em;
  margin-bottom: 90px;
  text-align: center;
  color: #eceff1;
}

.cards {
  position: relative;
}

.cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

.card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  flex: 1 1 14rem;
  padding: 1.5em 1em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: #eceff1;
  background-color: #000000;
  border: 1px solid #eceff133;
  border-radius: 15px;
}

  .badge {
    position: absolute;
    right: 5px;
    top: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(255 255 255 / 0.2);
    padding: 4px 10px;
    border-radius: 30px;
    background: linear-gradient(
      150deg,
      rgba(255 255 255 / 0.1) 30%,
      rgba(255 255 255 / 0.2)
    );
    pointer-events: none;
  }

.card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

.card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}

.card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

.plan-features {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style: outside none none;
  font-size: 0.8em;
}
.plan-features li {
  border-top: 1px solid #d2d7e2;
  padding: 10px 5%;
}
.plan-features li:nth-child(even) {
  color: #fffcfc;
}
 .plan-features i {
  margin-right: 8px;
  opacity: 0.4;
}
 .plan-select {
  border-top: 1px solid #d2d7e2;
  padding: 10px 10px 0;
}

.card__heading {
  font-size: 1.05em;
  font-weight: 600;
}

.card__price {
  font-size: 1.75em;
  font-weight: 700;
}

.cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #0d0d0d;
  padding: 0.7em;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  mask: radial-gradient(
    25rem 25rem at var(--x) var(--y),
    #000 1%,
    transparent 50%
  );
  transition: 400ms mask ease;
  will-change: mask;
}

.overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

.overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}

:not(.overlay) > .card {
  transition: 400ms background ease;
  will-change: background;
}

:not(.overlay) > .card:hover {
  --lightness: 95%;
  background: hsla(var(--hsl), 0.1);
}



.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 1100px;
  height: 80vh;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden; 
   position: relative;
    cursor: default;
}

/* Scrollable area for content */
.scroll-wrapper {
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Sticky plan row */
.plans-row {
  display: grid;
  grid-template-columns: 2.2fr repeat(5, 1fr);
  text-align: center;
  background: #f9fafc;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
  color: black;
  position: sticky;
  top: 0;
  z-index: 10;
  /* width: 88%; */
}

/* Table styling */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table td {
  border: 1px solid #eee;
  padding: 12px;
  text-align: center;
  color: #000;
}

.comparison-table td:first-child {
  text-align: left;
  background-color: #f9fafb;
  font-weight: 500;
}

.section-heading {
  text-align: left;
  font-weight: 700;
  background-color: #f1f5f9;
  color: #1e293b;
  padding: 16px 12px;
  font-size: 16px;
}

/* Plan cells */
.blank-cell {
  background: transparent;
}

.plan span {
  font-size: 24px;
  font-weight: bold;
}

.plan small {
  font-size: 12px;
  color: #666;
}

.plan a {
  font-size: 12px;
  color: #0047ff;
  text-decoration: none;
}

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  z-index: 11;
}

.close:hover {
  color: black;
}

/* Heading */
.h2_princing h2 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 34px;
}
.bold-header {
    font-family: "Founders Grotesk Medium";
    margin: 0px;
    overflow: visible;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 0px;
}

.section-title {
	margin-bottom: 30px;
}
.section-title h2 {
	position: relative;
	margin-top: 10px;
	/* margin-bottom: 15px; */
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  text-align: left;
  margin-bottom: 10px;
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-weight: 400;
}
.section-title h2::after {
	position: absolute;
	content: "";
	background-color: #FFCC00;
	height: 3px;
	width: 100px;
	bottom: -1px;
	left: 0;
}
.modal, .modal * {
  cursor: default !important;
}

:root {
  --text-color: #a1a1a1;
  --accent-color: #111;
  --geist-foreground-rgb: 255, 255, 255;
  --border-radius: 12px;
}


/******************************/
.gradient-text-animation {
  --colorA: #e9ff7d;
  --colorB: #ffffff;
  cursor: default;
  position: relative;
  background-image: linear-gradient(120deg, var(--colorA) 0%, var(--colorB) 50%, var(--colorA) 100%);
  background-origin: padding-box;
  background-size: 200%;
  -webkit-box-decoration-break: clone;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: unset;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  overflow: visible;
  animation: 3s linear 0s infinite normal forwards running nextui-k-dAFEPd;
  font-family: "Saira Stencil One", sans-serif;
  font-size: 25px;
}

@keyframes nextui-k-dAFEPd {
  100% {
    background-position: -200% center;
  }
}
/******************************/
.gradient-border-card {
  position: relative;
  padding: 40px;
  border-radius: var(--border-radius);
  flex: 1 1;
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 0 0 1px transparent, 0 2px 4px transparent, 0 12px 24px transparent;
  cursor: pointer;
  height: 100%;
  z-index: 1;
}
@keyframes shimmer {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    background-position: -50%;
  }
  10% {
    opacity: 0.7;
  }
  15% {
    opacity: 0;
    background-position: 150%;
  }
  20% {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}
.gradient-border-card .shimmer {
  background: linear-gradient(112deg, transparent 30%, rgba(var(--geist-foreground-rgb), 0.1) 40%, rgba(var(--geist-foreground-rgb), 0.3) 50%, rgba(var(--geist-foreground-rgb), 0.1) 60%, transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-radius: inherit;
  background-size: 200% auto;
  background-position: 0;
  animation: shimmer 18s cubic-bezier(0.8, 0, 0.05, 1) infinite;
  animation-delay: var(--delay);
}
.gradient-border-card i {
  content: "";
  position: absolute;
  inset: -1px;
  padding: var(--border-size);
  --border-size: 1px;
  --padding: 1px;
  --border-bg: conic-gradient(from 180deg at 50% 50%,#e92a67 0deg,#a853ba 112.5deg,#2a8af6 228.75deg,rgba(42,138,246,0) 360deg);
  overflow: hidden;
  padding: calc(var(--padding) + var(--border-size));
  border-radius: var(--border-radius);
  display: inline-block;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: calc(var(--border-radius) + var(--border-size));
}
.gradient-border-card i:before {
  content: "";
  display: block;
  background: var(--border-bg);
  box-shadow: 0 0 40px 20px --var(--border-bg);
  width: calc(100% * 1.41421356237);
  padding-bottom: calc(100% * 1.41421356237);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -2;
  animation: landing_spin__XlUIM 5s linear infinite;
}
@keyframes landing_spin__XlUIM {
  0% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}
.gradient-border-card .icon {
  position: relative;
  display: inline-flex;
  padding: 0.75rem;
  border-radius: inherit;
}
.gradient-border-card p {
  color: var(--text-color);
}
.gradient-border-card:before, .gradient-border-card .icon:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(75% 75% at 25% 15%, #fff 0, rgba(255, 255, 255, 0.3) 100%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
.gradient-border-card:hover {
  background: var(--accent-color);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05), 0 12px 24px rgba(0, 0, 0, 0.05);
}

/* Favorite Button
/*************************/
.favorite-item {
  margin: 0 -8px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.favorite-container .sparkle-container {
  position: absolute;
  height: 6px;
  width: 6px;
  color: var(--color);
}

.favorite-container {
  margin-left: 6px;
}

.favorite-container > svg {
  vertical-align: top;
}

.favorite-container .sparkle-container svg {
  display: block;
  transition: transform var(--duration, 0.2s) ease-out var(--delay);
  transform: translate(var(--starting-position-x), var(--starting-position-y)) scale(var(--starting-scale));
}

.gradient-border-card:hover .favorite-container svg {
  transform: translate(var(--ending-position-x), var(--ending-position-y)) scale(var(--ending-scale)) !important;
  transition: transform 0.1s ease-out 0;
}

.favorite-container {
  position: relative;
}

.favorite-container .sparkles-container {
  height: 24px;
  width: 24px;
  display: block;
  position: absolute;
  top: -2px;
  left: -3px;
}

/* Gradient Animation Button
/******************************/
button {
  border: 0;
  position: relative;
  border-radius: 12px;
  color: #fff;
  background: #000;
  padding: 0 16px;
  box-shadow: 0 0 0 1px 0 0 0 1px rgba(255, 255, 255, 0.14);
  max-width: 100%;
  justify-content: center;
  align-items: center;
  transition-property: border-color, background, color, transform, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  width: 100%;
  /* max-width: 250px; */
  transition: 0.25s;
}

.highlight-bg {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px;
  background: inherit;
  border-radius: 12px;
  background: linear-gradient(-90deg, #ffffff, #9500ff, #00d5ff, #ffffff);
  background-size: 400% 100%;
  border: none;
  padding: 0;
  margin: 0;
  animation: background-anim 15s ease-in-out infinite;
}

.button-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.highlight-bg:after {
  content: "";
  position: absolute;
  background-size: inherit;
  background-image: inherit;
  animation: inherit;
  left: 0;
  right: 0;
  top: 2px;
  height: 100%;
  filter: blur(0.5rem);
  transition: 0.25s;
}

@keyframes background-anim {
  50% {
    background-position: 140% 50%;
    transform: skew(-2deg);
  }
}
/*****************/

@keyframes gradientShapeAnimation1 {
  0% {
    -webkit-transform: translate(-30%, 40%) rotate(-20deg);
    transform: translate(-30%, 40%) rotate(-20deg);
  }
  25% {
    -webkit-transform: translate(0%, 20%) skew(-15deg, -15deg) rotate(80deg);
    transform: translate(0%, 20%) skew(-15deg, -15deg) rotate(80deg);
  }
  50% {
    -webkit-transform: translate(30%, -10%) rotate(180deg);
    transform: translate(30%, -10%) rotate(180deg);
  }
  75% {
    -webkit-transform: translate(-30%, 40%) skew(15deg, 15deg) rotate(240deg);
    transform: translate(-30%, 40%) skew(15deg, 15deg) rotate(240deg);
  }
  100% {
    -webkit-transform: translate(-30%, 40%) rotate(-20deg);
    transform: translate(-30%, 40%) rotate(-20deg);
  }
}
@keyframes gradientShapeAnimation2 {
  0% {
    -webkit-transform: translate(20%, -40%) rotate(-20deg);
    transform: translate(20%, -40%) rotate(-20deg);
  }
  20% {
    -webkit-transform: translate(0%, 0%) skew(-15deg, -15deg) rotate(80deg);
    transform: translate(0%, 0%) skew(-15deg, -15deg) rotate(80deg);
  }
  40% {
    -webkit-transform: translate(-40%, 50%) rotate(180deg);
    transform: translate(-40%, 50%) rotate(180deg);
  }
  60% {
    -webkit-transform: translate(-20%, -20%) skew(15deg, 15deg) rotate(80deg);
    transform: translate(-20%, -20%) skew(15deg, 15deg) rotate(80deg);
  }
  80% {
    -webkit-transform: translate(10%, -30%) rotate(180deg);
    transform: translate(10%, -30%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(20%, -40%) rotate(340deg);
    transform: translate(20%, -40%) rotate(340deg);
  }
}
.gradient-background__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://res.cloudinary.com/du6mfjbbd/image/upload/v1701127786/qzt2rn0jkkdln3y1e3mp.png");
  background-size: 100px;
}


@-moz-document url-prefix() {
  .gradient-background__wrapper {
    background-image: url("https://res.cloudinary.com/du6mfjbbd/image/upload/v1701127843/gradient-background-c1d8cb3f0925910cfff2493c4442d4e2c1cb6b8a267903342574faee6f70c26c_zuhomc.png");
    background-size: cover;
  }

  @media (max-width: 568px) {
    .gradient-background__wrapper {
      background: #FFFFFF;
    }
  }
  .gradient-background,
.gradient-background__noise {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gradient-background__wrapper {
    background-image: url("https://res.cloudinary.com/du6mfjbbd/image/upload/v1701127843/gradient-background-c1d8cb3f0925910cfff2493c4442d4e2c1cb6b8a267903342574faee6f70c26c_zuhomc.png");
    background-size: cover;
  }
}
@media all and (-ms-high-contrast: none) and (max-width: 568px), (-ms-high-contrast: active) and (max-width: 568px) {
  .gradient-background__wrapper {
    background: #FFFFFF;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gradient-background,
.gradient-background__noise {
    display: none;
  }
}
/*****************************/
.glowing-wrapper-button {
  z-index: 1;
  color: #fff;
  letter-spacing: -0.01em;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 62.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.42;
  text-decoration: none;
  position: relative;
  max-width: 100%;
  display: inline-block;
}

.glowing-wrapper {
  border-radius: 62.5rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}



.glowing-wrapper-borders-masker {
  width: 100%;
  opacity: 0;
  border-radius: 62.5rem;
  padding: 0.11rem;
  line-height: 100%;
  transition: opacity 1s;
  position: absolute;
  top: 0;
  left: 0;
}

.glowing-wrapper .button-text {
  z-index: 2;
  color: #fff;
  position: relative;
}

.glowing-wrapper-animations {
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glowing-wrapper-mask {
  opacity: 1;
}

.glowing-wrapper-glow {
  opacity: 0.12;
  filter: blur(8px);
}

.glowing-wrapper-borders {
  width: 100%;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.glowing-wrapper-mask-wrapper {
  opacity: 1;
}

.glowing-wrapper-button:after {
  background: radial-gradient(85% 120% at 50% 120%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 999px;
  content: "";
  height: calc(100% + 4px);
  left: -2px;
  opacity: 0;
  position: absolute;
  top: -2px;
  transition: 1s all;
  width: calc(100% + 4px);
}

.glowing-wrapper-button:hover:after {
  opacity: 0.7;
}

.glowing-wrapper-active .glowing-wrapper-animations,
.glowing-wrapper-active .glowing-wrapper-borders-masker {
  opacity: 1;
}

.glowing-wrapper-animations:before,
.glowing-wrapper-borders:before {
  content: "";
  float: left;
  padding-top: 100%;
}

.glowing-wrapper-animations:after,
.glowing-wrapper-borders:after {
  clear: both;
  content: "";
  display: block;
}

.glowing-wrapper-animations {
  pointer-events: none;
}

.glowing-wrapper-animations * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.glowing-wrapper-borders,
.glowing-wrapper-glow,
.glowing-wrapper-mask {
  animation: borderTurn 2.5s infinite linear;
  background-image: conic-gradient(from 0 at 50% 50%, rgba(255, 255, 255, 0.5) 0deg, rgba(255, 255, 255, 0) 60deg, rgba(255, 255, 255, 0) 310deg, rgba(255, 255, 255, 0.5) 360deg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glowing-wrapper-mask-wrapper {
  -webkit-mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
  mask: url("data:image/svg+xml,url('data:image/svg+xml,%253Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%253E%253Crect width='28' height='24' fill='black'/%253E%253C/svg%253E%250A');");
  mask-repeat: repeat;
  -webkit-mask-size: auto;
  mask-size: auto;
}

.glowing-wrapper-borders {
  animation-name: borderTurnWithTranslate;
}

.glowing-wrapper-borders-masker {
  content: "";
  inset: 0;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes borderTurn {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes borderTurnWithTranslate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.close-button {
  background: transparent;
  border-radius: 50%;
  animation: animate 3s linear infinite;
}

@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(48, 0, 117, 0.7), 0 0 0 0 rgba(48, 0, 117, 0.7);
  }
  40% {
    box-shadow: 0 0 0 20px rgba(48, 0, 117, 0), 0 0 0 0 rgba(48, 0, 117, 0.7);
  }
  80% {
    box-shadow: 0 0 0 20px rgba(48, 0, 117, 0), 0 0 0 30px rgba(48, 0, 117, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(48, 0, 117, 0), 0 0 0 30px rgba(48, 0, 117, 0);
  }
}
/****************/
@keyframes hueRotate {
  0% {
    filter: hue-rotate(0) blur(30px);
  }
  100% {
    filter: hue-rotate(360deg) blur(30px);
  }
}
.gradient-line:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  height: 75px;
  filter: blur(30px);
  -webkit-filter: blur(30px);
  background-image: conic-gradient(from 180deg at 50% 100%, transparent 0, transparent 27%, #ff3998 27%, #d764ff 36.04%, #00b5ff 58.23%, #0fd 63%, #54fa43 73%, transparent 73%, transparent 100%);
  animation: hueRotate 2.5s linear infinite;
}


.pri-c {
    font-family: "Founders Grotesk Medium";;
    font-weight: 400;
    color: rgba(12, 41, 171, 1);
    line-height: 1.2;
    border-radius: 0px;
    cursor: pointer;
    margin: 0px 0px 40px;
    font-size: 24px;
    height: max-content;  
}



section {
  /* padding-block: min(20vh, 2rem); */
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  margin-bottom: 150px;
}
.three-box h2 {
  text-transform: capitalize;
  letter-spacing: 0.025em;
  position: relative;
  margin-top: 10px;
  /* margin-bottom: 15px; */
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  text-align: left;
  margin-bottom: 10px;
  font-family: "Marcellus", serif;
  font-size: 36px;
  font-weight: 400;
}

.h2-text-wu{
      font-family: "Playfair Display", serif;
    font-size: 25px;
}
.three-box h2::after {
    position: absolute;
    content: "";
    background-color: #FFCC00;
    height: 3px;
    width: 100px;
    bottom: -1px;
    left: 0;
}
.three-box a {
  display: inline-block;
  text-decoration: none;
}
.three-box .container-threebox {
  margin-top: 5em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2rem;
}
.three-box .container-threebox .card-d:nth-child(1) .box .icon .iconBox {
  background: #d3b19a;
}
.three-box .container-threebox .card-d:nth-child(2) .box .icon .iconBox {
  background: #70b3b1;
}
.three-box .container-threebox .card-d:nth-child(3) .box .icon .iconBox {
  background: #d05fa2;
}
.three-box .container-threebox .card-d ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.three-box .container-threebox .card-d ul li {
  text-transform: uppercase;
  background: var(--clr-tag);
  color: #282828;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.375rem 0.625rem;
  border-radius: 0.188rem;
}
.three-box .container-threebox .card-d ul .branding {
  color: #704a31;
}
.three-box .container-threebox .card-d ul .packaging {
  color: #1e3938;
}
.three-box .container-threebox .card-d ul .marketing {
  color: #4d1637;
}
.three-box .container-threebox .card-d .content-card {
  padding: 0.938rem 0.625rem;
}
.three-box .container-threebox .card-d .content-card h3 {
  text-transform: capitalize;
  font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
}
.three-box .container-threebox .card-d .content-card p {
  margin: 0.625rem 0 1.25rem;
  color: #ffffff;
}
.three-box .container-threebox .card-inner {
  position: relative;
  width: inherit;
  height: 18.75rem;
  background: var(--clr);
  border-radius: 1.25rem;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.three-box .container-threebox .card-inner .box {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
}
.three-box .container-threebox .card-inner .box .imgBox {
  position: absolute;
  inset: 0;
}
section .container-threebox .card-inner .box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-box .container-threebox .card-inner .box .icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  width: 6rem;
  height: 6rem;
  background: black;
  border-top-left-radius: 50%;
}
.three-box .container-threebox .card-inner .box .icon:hover .iconBox {
  transform: scale(1.1);
}
.three-box .container-threebox .card-inner .box .icon::before {
  position: absolute;
  content: "";
  bottom: 0.375rem;
  left: -1.25rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #000000;
}
.three-box .container-threebox .card-inner .box .icon::after {
  position: absolute;
  content: "";
  top: -1.25rem;
  right: 0.375rem;
  background: transparent;
  width: 1.25rem;
  height: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  box-shadow: 0.313rem 0.313rem 0 0.313rem #000000;
}
.three-box .container-threebox .card-inner .box .icon .iconBox {
  position: absolute;
  inset: 0.625rem;
  background: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.three-box .container-threebox .card-inner .box .icon .iconBox span {
  color: #fff;
  font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        max-width: 93% !important;
    }
} 

/* mobile view  */
@media (max-width: 600px) {
    .container {
        max-width: 88% !important;
    }
    .paddig-co{
      padding: 20px;
    }
    section{
      margin-bottom: 120px;
    }
    .contact-section{
    margin-top: -70px;
    }
    .form-card form button {
      padding: 1px;
    }
}

@media (max-width: 768px) {
  .content-2 {
    margin-top: 150px;
    margin-bottom: 150px;
    margin-left: 20px;
    padding: 0 10px;
  }
  .gradient-border-card {
    padding: 16px;
  }

  .title {
    font-size: 48px; /* reduce from 105px */
    text-align: center;
  }

  .subtitle {
    font-size: 16px;
  }

  .aurora__item {
    width: 100vw;
    height: 100vw;
    filter: blur(60px); /* Optional: Reduce blur on small screens */
  }
   .main {
    padding: 2em 1em;
  }

  .main__heading {
    font-size: 1.5em;
    margin-bottom: 40px;
  }

  .cards__inner {
    flex-direction: column;
    gap: 1.5em;
  }

  .card {
    padding: 1.25em;
    font-size: 0.95em;
  }

.badge {
        font-size: 0.95rem;
        padding: 6px 9px;
        margin-right: 14px;
        margin-top: 11px;
    }

  .card__heading {
    font-size: 1em;
  }
  .card-hed{
    margin-top: 40px;
  }

  .card__price {
    font-size: 1.5em;
    text-align: center;
  }

  .plan-features {
    font-size: 0.75em;
  }

  .cta {
    font-size: 0.9rem;
    padding: 0.6em;
  }

  .modal-content {
    width: 95%;
    padding: 16px 20px;
    height: 85vh;
  }

  .plans-row {
    grid-template-columns: 1fr 1fr 1fr;
    font-size: 0.8em;
    /* overflow-x: auto; */
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .comparison-table td {
    padding: 8px;
    font-size: 0.85em;
  }

  .close {
    top: 15px;
    right: 20px;
    font-size: 22px;
  }

  .h2_princing h2 {
    font-size: 24px;
  }

  .bold-header {
    font-size: 20px;
  }
  .faq{
    padding: 0px 0px;
  }
  
}

@media (max-width: 480px) {
  
  .title {
    font-size: 52px;
  }

  .subtitle {
    font-size: 14px;
  }

  .content-2 {
    margin-top: 250px;
    margin-bottom: 140px;
    margin-left: 10px;
  }
   .main__heading {
    font-size: 1.25em;
  }

  .card {
    font-size: 0.9em;
  }

  .cta {
    font-size: 0.85rem;
  }

  .modal-content {
    padding: 12px 16px;
    height: 90vh;
  }

  .plans-row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.75em;
  }

  .h2_princing h2 {
    font-size: 20px;
  }

  .bold-header {
    font-size: 18px;
  }
}


 .head-er {
      text-align: center;
      padding: 60px 20px;
      max-width: 900px;
      margin: auto;
    }

    .head-er h2 {
      font-family: "Marcellus", serif;
      font-size: 52px;
      font-weight: 400;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .head-er p {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
    }
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    height: 90vh;
    padding: 15px 20px;
  }

  .plans-row {
    grid-template-columns: 1.5fr repeat(5, minmax(63px, 1fr));
    font-size: 7px;
    padding: 10px 0;
  }

  .comparison-table td {
    padding: 8px;
    font-size: 13px;
  }

  .plan span {
    font-size: 18px;
  }

  .plan small {
    font-size: 7px;
  }

 .plan span {
    font-size: 12px;
}
  .h2_princing h2 {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .scroll-wrapper {
    padding-right: 0;
  }
}

  .chaty-label {
  font-size: 12px;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00e0ff, #8e2de2);
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  white-space: nowrap;
  margin-top: -100px;
  /* margin-left: -12px; */
  
}

@media (max-width: 768px) {
     .chaty-label {
  font-size: 7px;
  margin-bottom: 5px;
  background: linear-gradient(90deg, #00e0ff, #8e2de2);
  color: white;
  padding: 9px 3px;
  border-radius: 12px;
  white-space: nowrap;
  /* margin-top: 100px; */
  /* margin-left: -12px; */
}
}
